home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 42
/
Amiga Format AFCD42 (Issue 126, Aug 1999).iso
/
-serious-
/
misc
/
taper
/
install_taper
< prev
next >
Wrap
Text File
|
1999-05-17
|
2KB
|
96 lines
;VER: Taper installer v1.0
;it sux but it werks
(complete 0)
(set #introduction
(cat "\n\n\n\nThis installer lets you install Taper V1.0 "
"on you computer."
"You need about 60k hard drive space free.\n"
"If you dont have that then you are a utter monkey spank"
))
(set #which-dir
(cat "Where shall I put the recording and playing commands ?"
))
(set #which-dir-help
(cat "\nThis is where you tell the installer where to install the "
"actual recording and playing commands. The directory SYS:C"
" is default coz its a default path (you can use it as a command).\n\n"
@askdir-help
))
(set #copystuff
(cat "Copying the programs..."
))
(set #copyhelp
(cat "\n\n\n\n\n\n\nNow the files will be copied to the specified directory."
))
(set #wherehelp
(cat "Where shall I put the help files ?"
))
(set #wherehelphelp
(cat "\nThis is where you tell the installer where to install the "
"help files for Taper. The recommended directory is HELP: "
"(which is in SYS:Locale/Help)"
))
(set #done
(cat "\n\n\n\nAll Done !!!"
"\n\nL8r dood."
"\n\nBye !!!"
))
(message #introduction)
(set maintarget (askdir (prompt #which-dir)
(help #which-dir-help)
(default "SYS:C")
)
)
(copyfiles (prompt #copystuff)
(source "RudeRecordTape")
(dest maintarget)
(help #copyhelp)
(confirm "expert")
)
(complete 20)
(copyfiles (prompt #copystuff)
(source "RudePlayTape")
(dest maintarget)
(help #copyhelp)
(confirm "expert")
)
(complete 40)
(copyfiles (prompt #copystuff)
(source "RudePlayQuick")
(dest maintarget)
(help #copyhelp)
(confirm "expert")
)
(complete 60)
(set helptarget (askdir (prompt #wherehelp)
(help #wherehelphelp)
(default "SYS:LOCALE/HELP")
)
)
(copyfiles (prompt #copystuff)
(source "RudeTaper.help")
(dest helptarget)
(help #copyhelp)
(confirm "expert")
)
(complete 80)
(run "multiview readmeordieyoulamer")
(complete 100)
(message #done)